Storyblok MCP
A Model Context Protocol (MCP) implementation for Storyblok that allows you to manage components through natural language descriptions.
Features
- Create Storyblok components using natural language descriptions
- Update existing components with new fields and properties
- List all available components
- Smart schema generation from descriptions
- Support for various field types (text, richtext, asset, multilink, etc.)
Setup
- Clone the repository:
git clone [repository-url]
cd storyblok-mcp
- Install dependencies:
npm install
- Configure environment variables:
cp .env.example .env
Edit .env and add your Storyblok credentials:
STORYBLOK_SPACE_ID: Your Storyblok space IDSTORYBLOK_API_KEY: Your Storyblok API key
Usage
Start the MCP server:
npm start
Creating Components
Create components by providing a description with display name and schema:
display:Component Name
schema:
field1 (text)
field2 (richtext)
field3 (asset)
field4 (multilink)
Updating Components
Update components by specifying their ID and new properties:
display:New Display Name
schema:
newField1 (text)
newField2 (richtext)
Supported Field Types
- text: Simple text field
- textarea: Multi-line text field
- richtext: Rich text editor
- markdown: Markdown editor
- number: Numeric input
- datetime: Date and time picker
- boolean: True/false toggle
- asset: File/image selector
- multilink: Link selector
- bloks: Nested components
Development
Run in development mode with auto-reload:
npm run dev
Run tests:
npm test
Cursor MCP Setup
To use this MCP in Cursor, you need to configure it in your Cursor MCP settings:
{
"mcpServers": {
"Storyblok MCP": {
"command": "npx",
"args": [
"tsx",
"/path/to/your/storyblok-mcp/src/main.ts"
],
"env": {
"STORYBLOK_SPACE_ID": "your_space_id",
"STORYBLOK_API_KEY": "your_api_key"
}
}
}
}
Replace:
/path/to/your/storyblok-mcpwith the actual path where you cloned this repositoryyour_space_idwith your Storyblok space IDyour_api_keywith your Storyblok API key
After saving the configuration, restart Cursor for the changes to take effect. You can then use natural language commands to manage your Storyblok components directly from Cursor.
Recommend MCP Servers 💡
dida-mcp-server
An MCP server for interacting with TickTick/Dida365 task management service, providing tools to manage tasks, projects, and tags.
devrev-mcp
A Model Context Protocol server for DevRev, providing comprehensive access to DevRev's APIs for managing work items, parts, meetings, workflows, and search across DevRev data.
Gemini Email Generator
An MCP server that uses Google's Gemini Flash 2 AI to generate email subjects and detailed thinking processes, designed for seamless integration with Claude Desktop.
horologic-mcp
MCP server for time and timezone operations with STDIO transport
docker-hub
A Model Context Protocol (MCP) server interfacing with Docker Hub APIs to enable LLMs for intelligent content discovery and repository management.
deebo
Autonomous debugging agent MCP server that helps AI coding agents debug by launching automated investigations, speeding up time-to-resolution by 10x